devonfw/ide#1143 Add support for Tomcat#59
Open
Leosssss wants to merge 9 commits intodevonfw:masterfrom
Open
Conversation
hohwille
requested changes
Jun 6, 2023
tomcat/urls
Outdated
| @@ -0,0 +1 @@ | |||
| https://archive.apache.org/dist/tomcat/tomcat-${major}/v${version}/src/apache-tomcat-${version}-src.${ext} No newline at end of file | |||
Member
There was a problem hiding this comment.
Did you try to download tomcat manually, unpack and start it?
src stands for source(-code). Therefore this download URL leads to an archive containing the Java source code files of tomcat that need to be compiled and build before you can run them.
You should use bin instead of src and if I am not mistaken, you can use the regular zip distribution of tomcat that can run on all platforms so in ext-mappings you can just have one line *=.zip.
tomcat/available-versions
Outdated
| @@ -0,0 +1 @@ | |||
| 9.0.76 No newline at end of file | |||
Member
There was a problem hiding this comment.
here you should list all the versions. For major version 9, you can get the list from here:
https://archive.apache.org/dist/tomcat/tomcat-9/ but you can omit the milestones (9.0.0.M*).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
devonfw/ide#1143: add tomcat download metadata